home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************/
- /* BWSPLASH.RC defines a simple Borland Windows Custom Control */
- /* Dialog Box that can be used as the main window. */
- /* Notice the CLASS "BORDLG" to activate the metalic background */
- /* Also notice the special "Borshade" Control. */
- /*****************************************************************/
-
- #include "windows.h"
- #include "bwcc.h"
-
- MAINWINDOWDIALOG DIALOG 13, 16, 162, 167
- CAPTION "BWCC Dialog Box"
- CLASS "BORDLG"
- STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX
- BEGIN
- CONTROL "", 104, "BorShade", 1 | WS_CHILD | WS_VISIBLE, 6, 114, 150, 48
- CTEXT "The Bitmap Associated with a button", -1, 12, 120, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
- CTEXT "can be used as a splash screen ", -1, 12, 132, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
- CTEXT "or a custom background.", -1, 12, 144, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
- CONTROL "Button", 110, "BorBtn", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 6, 6, 32, 20
- END
-
- 1110 BITMAP splash.bmp
-
-